diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-03-28 15:05:04 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-03-28 15:05:04 -0400 |
commit | a7d2c0b8de196e3f069f6447b5f22341d1cebd04 (patch) | |
tree | 47e9934e4fbe136a2a09e39b87b5fee8411ad578 | |
parent | Initial commit (diff) | |
download | dotfiles.old-a7d2c0b8de196e3f069f6447b5f22341d1cebd04.tar.gz dotfiles.old-a7d2c0b8de196e3f069f6447b5f22341d1cebd04.tar.bz2 dotfiles.old-a7d2c0b8de196e3f069f6447b5f22341d1cebd04.zip |
Create '.bashrc'
This creates the file '.bashrc', and adds the standard "test for an
interactive shell".
-rw-r--r-- | .bashrc | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -0,0 +1,7 @@ | |||
1 | # ~/.bashrc | ||
2 | # Author: Mountain Man | ||
3 | |||
4 | # Test for an interactive shell. | ||
5 | if [[ $- != *i* ]] ; then | ||
6 | return | ||
7 | fi | ||